home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HPAVC
/
HPAVC CD-ROM.iso
/
PCACHSRC.ZIP
/
NOTHING.ASM
< prev
next >
Wrap
Assembly Source File
|
1989-09-28
|
422b
|
25 lines
cseg segment para public 'code'
main proc far
assume cs:cseg,ds:cseg,es:cseg
org 100h
begin:
push cs
pop ds
;print "Z" on printer
mov ah,5
mov dl,5Ah
int 21h
;now send carr. ret.
mov ah,5
mov dl,0Dh
int 21h
mov al,0 ;exit code
mov ah,4Ch ;exit function
int 21h
main endp
cseg ends
end begin